home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Puzzle / Bojo.exe / scripts / DefineSprite_294 / frame_4 / DoAction.as
Text File  |  2006-05-29  |  246b  |  15 lines

  1. CurrentTime = getTimer();
  2. if((CurrentTime - StartTime) / "1000" >= Interval)
  3. {
  4.    call(Target);
  5.    LoopCount += "1";
  6.    if(LoopCount < Loops or Loops == "0")
  7.    {
  8.       gotoAndPlay(3);
  9.    }
  10.    else
  11.    {
  12.       gotoAndStop(6);
  13.    }
  14. }
  15.